home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1996 May / Software of the Month Club 1996 May.iso / mac / Desktop Publishing / HTML 101 / HTML 101 / HTML 101.rsrc / TEXT_136.txt < prev    next >
Encoding:
Text File  |  1996-03-07  |  1016 b   |  43 lines

  1.  
  2. Drill 4
  3.  
  4. ΓÇóOpen your simpletext document.
  5.  
  6. ΓÇóIt should look like this:
  7.  
  8. <HTML>
  9. <HEAD>
  10. <TITLE>
  11.  George's Most Excellent Home Page
  12. </TITLE>
  13. </HEAD>
  14. <BODY>
  15. <H1>George's Most Excellent Home Page</H1>
  16. <HR>
  17. </BODY>
  18. </HTML>
  19.  
  20. ΓÇóLet's add paragraph and line break tags to some text we type after the horizontal rule. This is what I type:
  21.  
  22. <HTML>
  23. <HEAD>
  24. <TITLE>
  25.  George's Most Excellent Home Page
  26. </TITLE>
  27. </HEAD>
  28. <BODY>
  29. <H1>George's Most Excellent Home Page</H1>
  30. <HR>
  31. <P>          ----------------------> paragraph tag
  32. Welcome to my home page!<BR>   ------>line break tag
  33. It is still in the construction stages but if you bear with me it will someday look COOL!<BR>    ------------> line break tag
  34. Thanks for stopping by.<BR>     -----------> line break tag
  35. <P>       ----------------------> paragraph tag
  36. George
  37. </BODY>
  38. </HTML>
  39.  
  40. ΓÇóSave the document and then open it with your browser. The text should be formatted so that it looks normal and does not run together.
  41.  
  42. Next, let's add bold and italic styles to your text.
  43.